SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

[Vue 學習筆記(二)] Vue class 和 style binding

[Vue 學習筆記(二)] Vue class 和 style binding

字串小幫手 on linux

字串小幫手 on linux

Python 程式設計函式的參數和回傳值入門教學

Python 程式設計函式的參數和回傳值入門教學






留言討論